home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
networking
/
terms
/
tipx
/
CONVERT2TIPX
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1991-10-11
|
333 b
|
14 lines
#!/bin/sh
if fgrep 'TIPX' hunt.c 2>&1 > /dev/null
then
echo 'diffs have already been applied';
exit 1;
else
echo 'applying patches to tip to make tipx';
fi
patch -p < tipx.diff.01
echo ''
echo 'patches have been applied. if patch was successful,'
echo 'then edit Makefile to your liking and make.'
exit 0